home *** CD-ROM | disk | FTP | other *** search
- :ex_menu.scr
-
- if memory 1 < 8 goto begin
-
- if memory 1 = 7 goto menu
-
- clear
- keyboard
-
- if memory 1 = 8 goto ex1
- if memory 1 = 9 goto ex2
- if memory 1 = 10 goto ex3
- if memory 1 = 11 goto ex4
- if memory 1 = 12 goto ex5
-
- :begin
-
- memory 1 = 7
- memory 2 = 0
-
- :menu
-
- clear
- cursor 26 4
- print 'This is the EXERCISES MENU.
- cursor 4 7
- print 'You will return here if you press ESC whilst doing any of the lessons.
-
- cursor 14 10
- print 'Press : 1 For an introduction
- cursor 22 12
- print '2 for Lesson 10
- cursor 22 13
- print '3 for Lesson 11
- cursor 22 14
- print '4 for Lesson 12
- cursor 22 15
- print '5 for Lesson 13
- cursor 22 16
- print '6 for Lesson 14
-
- cursor 4 24
- print 'Remember, pressing ESC from here will return you to the TUTORIAL MENU.
-
- :wait_key
- wait
- if key = 27 goto exit
- if key >= 49 if key <= 54 goto check_key
- goto wait_key
-
- :check_key
-
- if key = 49 goto intro
-
- clear
- keyboard
-
- memory 2 = 0
-
- if key = 50 goto ex1
- if key = 51 goto ex2
- if key = 52 goto ex3
- if key = 53 goto ex4
- if key = 54 goto ex5
-
- :ex1
- memory 1 = 8
- script exsize1
- if key = 27 goto menu
- if key = s goto exit
- if key = S goto exit
-
- :ex2
- memory 1 = 9
- script exsize2
- if key = 27 goto menu
- if key = s goto exit
- if key = S goto exit
-
- :ex3
- memory 1 = 10
- script exsize3
- if key = 27 goto menu
- if key = s goto exit
- if key = S goto exit
-
- :ex4
- memory 1 = 11
- script exsize4
- if key = 27 goto menu
- if key = s goto exit
- if key = S goto exit
-
- :ex5
- memory 1 = 12
- script exsize5
- if key = 27 goto menu
- if key = s goto exit
- if key = S goto exit
-
- goto menu
-
- :intro
-
- clear
- cursor 2 2
- print 'The exercises in this part of the tutorial consist of example drafts of text.
- cursor 0 3
- print 'It is best if you do one exercise per session, possibly repeating the same
- cursor 0 4
- print 'exercise until you are confident enough to move on to the next exercise.
-
- cursor 2 6
- print 'Also, starting with these exercises, we will try to improve your speed in
- cursor 0 7
- print 'words per minute. I will set the speed at roughly the speed you have been typing
- cursor 0 8
- print 'so far.
- cursor 2 9
- print 'Basically, if you don't press the highlighted key within a certain time limit
- cursor 0 10
- print 'the arrows will move onto the next character in the test. If this happens, don't
- cursor 0 11
- print 'worry, you won't have to correct your mistake.
- cursor 2 12
- print 'Generally, this is the best way to type on a computer anyway, as mistakes can
- cursor 0 13
- print 'be taken care of when you finish typing your text, rather than fiddling about
- cursor 0 14
- print 'with the cursor each time you make an error.
-
- cursor 2 16
- print 'Some of the examples present text in capitals, like PCWORD. The keyboard on
- cursor 0 17
- print 'display will highlight one of the shift keys with each letter, but you can use
- cursor 0 18
- print 'the CAPS LOCK instead of switching to the other SHIFT key. So when you get to
- cursor 0 19
- print 'capitalised text, first press the CAPS LOCK type the text and press the CAPS
- cursor 0 20
- print 'LOCK to return the keys to their normal shift state.
-
- script waitspc
- goto menu
-
- :exit